HomeSort by relevance Sort by last modified time
    Searched refs:PhysicalStart (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /device/linaro/bootloader/OpenPlatformPkg/Platforms/AMD/Styx/Drivers/FdtDxe/
LinuxLoaderHelper.c 99 NewResource->PhysicalStart = ResHob->PhysicalStart;
113 ASSERT (!((ResHob->PhysicalStart >= Resource->PhysicalStart) && (ResHob->PhysicalStart < (Resource->PhysicalStart + Resource->ResourceLength))));
114 ASSERT (!((ResHob->PhysicalStart + ResHob->ResourceLength - 1 >= Resource->PhysicalStart) &&
115 ((ResHob->PhysicalStart + ResHob->ResourceLength - 1) < (Resource->PhysicalStart + Resource->ResourceLength))));
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/EfiLdr/
Support.c 49 Temp = DivU64x32 ((BaseAddress - Desc[Index].PhysicalStart), EFI_PAGE_SIZE) + NoPages;
51 if ((Desc[Index].PhysicalStart < BaseAddress) && (Desc[Index].NumberOfPages >= Temp)) {
54 Desc[*NoDesc].PhysicalStart = BaseAddress + MultU64x32 (NoPages, EFI_PAGE_SIZE);
63 if ((Desc[Index].PhysicalStart == BaseAddress) && (Desc[Index].NumberOfPages == NoPages)) {
69 if ((Desc[Index].PhysicalStart == BaseAddress) && (Desc[Index].NumberOfPages > NoPages)) {
71 Desc[Index].PhysicalStart += MultU64x32 (NoPages, EFI_PAGE_SIZE);
81 Desc[*NoDesc].PhysicalStart = BaseAddress;
108 if (EfiMemoryDescriptor[Index].PhysicalStart + LShiftU64(EfiMemoryDescriptor[Index].NumberOfPages, EFI_PAGE_SHIFT) <= 0x100000) {
113 if (EfiMemoryDescriptor[Index].PhysicalStart > MaxPhysicalStart) {
114 if (EfiMemoryDescriptor[Index].PhysicalStart + LShiftU64(EfiMemoryDescriptor[Index].NumberOfPages, EFI_PAGE_SHIFT) <= 0x100000000ULL) {
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/MemoryInitPei/
MemoryInitPeiLib.c 105 (PcdGet64 (PcdSystemMemoryBase) >= NextHob.ResourceDescriptor->PhysicalStart) &&
106 (NextHob.ResourceDescriptor->PhysicalStart + NextHob.ResourceDescriptor->ResourceLength <= PcdGet64 (PcdSystemMemoryBase) + PcdGet64 (PcdSystemMemorySize)))
140 (PcdGet64 (PcdFdBaseAddress) >= NextHob.ResourceDescriptor->PhysicalStart) &&
141 (FdTop <= NextHob.ResourceDescriptor->PhysicalStart + NextHob.ResourceDescriptor->ResourceLength))
145 ResourceTop = NextHob.ResourceDescriptor->PhysicalStart + ResourceLength;
147 if (PcdGet64 (PcdFdBaseAddress) == NextHob.ResourceDescriptor->PhysicalStart) {
158 NextHob.ResourceDescriptor->PhysicalStart += PcdGet32(PcdFdSize);
169 NextHob.ResourceDescriptor->ResourceLength = PcdGet64 (PcdFdBaseAddress) - NextHob.ResourceDescriptor->PhysicalStart;
172 if (FdTop < NextHob.ResourceDescriptor->PhysicalStart + ResourceLength) {
  /device/linaro/bootloader/edk2/DuetPkg/DxeIpl/
HobGeneration.c 68 0, // PhysicalStart
132 0x0, // PhysicalStart
152 0x0, // PhysicalStart
171 0x0, // PhysicalStart
209 0x0, // PhysicalStart
412 0, // PhysicalStart (Fixed later)
489 0, // PhysicalStart (Fixed later)
621 gHob->MemoryFreeUnder1MB.PhysicalStart = EFI_MEMORY_BELOW_1MB_START;
627 gHob->MemoryAbove1MB.PhysicalStart = 0;
629 gHob->MemoryAbove4GB.PhysicalStart = 0;
    [all...]
DxeInit.c 66 MemoryAbove1MB.PhysicalStart <-----------------------------------------------------+
98 MemoryFreeAbove4G.Physicalstart <--------------------------------------------------+
240 gHob->BfvResource.PhysicalStart, gHob->BfvResource.ResourceLength,
241 gHob->NvStorageFvResource.PhysicalStart, gHob->NvStorageFvResource.ResourceLength,
243 gHob->NvFtwFvResource.PhysicalStart, gHob->NvFtwFvResource.ResourceLength,
248 gHob->MemoryFreeUnder1MB.PhysicalStart, gHob->MemoryFreeUnder1MB.ResourceLength,
249 gHob->MemoryAbove1MB.PhysicalStart, gHob->MemoryAbove1MB.ResourceLength,
250 gHob->MemoryAbove4GB.PhysicalStart, gHob->MemoryAbove4GB.ResourceLength,
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
MemoryAttributesTable.c 139 ASSERT (Address == MemoryMap->PhysicalStart);
141 Address = MemoryMap->PhysicalStart + EfiPagesToSize(MemoryMap->NumberOfPages);
147 Sort memory map entries based upon PhysicalStart, from low to high.
172 if (MemoryMapEntry->PhysicalStart > NextMemoryMapEntry->PhysicalStart) {
225 ((MemoryMapEntry->PhysicalStart + MemoryBlockLength) == NextMemoryMapEntry->PhysicalStart)) {
362 PhysicalEnd = TempRecord.PhysicalStart + EfiPagesToSize(TempRecord.NumberOfPages);
368 if (ImageRecord->ImageBase > TempRecord.PhysicalStart) {
370 NewRecord->PhysicalStart = TempRecord.PhysicalStart;
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Library/ArmPlatformLibHisilicon/
ArmPlatformLibMem.c 75 if (NextHob.ResourceDescriptor->PhysicalStart > BASE_4GB)
77 VirtualMemoryTable[++Index].PhysicalBase = NextHob.ResourceDescriptor->PhysicalStart;
78 VirtualMemoryTable[Index].VirtualBase = NextHob.ResourceDescriptor->PhysicalStart;
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
MemMap.c 177 ShellPrintHiiEx(-1, -1, NULL, (EFI_STRING_ID)(!Sfo?STRING_TOKEN (STR_MEMMAP_LIST_ITEM):STRING_TOKEN (STR_MEMMAP_LIST_ITEM_SFO)), gShellDebug1HiiHandle, NameEfiReservedMemoryType, ((EFI_MEMORY_DESCRIPTOR*)Walker)->PhysicalStart, ((EFI_MEMORY_DESCRIPTOR*)Walker)->PhysicalStart+MultU64x64(SIZE_4KB,((EFI_MEMORY_DESCRIPTOR*)Walker)->NumberOfPages)-1, ((EFI_MEMORY_DESCRIPTOR*)Walker)->NumberOfPages, ((EFI_MEMORY_DESCRIPTOR*)Walker)->Attribute);
181 ShellPrintHiiEx(-1, -1, NULL, (EFI_STRING_ID)(!Sfo?STRING_TOKEN (STR_MEMMAP_LIST_ITEM):STRING_TOKEN (STR_MEMMAP_LIST_ITEM_SFO)), gShellDebug1HiiHandle, NameEfiLoaderCode, ((EFI_MEMORY_DESCRIPTOR*)Walker)->PhysicalStart, ((EFI_MEMORY_DESCRIPTOR*)Walker)->PhysicalStart+MultU64x64(SIZE_4KB,((EFI_MEMORY_DESCRIPTOR*)Walker)->NumberOfPages)-1, ((EFI_MEMORY_DESCRIPTOR*)Walker)->NumberOfPages, ((EFI_MEMORY_DESCRIPTOR*)Walker)->Attribute);
186 ShellPrintHiiEx(-1, -1, NULL, (EFI_STRING_ID)(!Sfo?STRING_TOKEN (STR_MEMMAP_LIST_ITEM):STRING_TOKEN (STR_MEMMAP_LIST_ITEM_SFO)), gShellDebug1HiiHandle, NameEfiLoaderData, ((EFI_MEMORY_DESCRIPTOR*)Walker)->PhysicalStart, ((EFI_MEMORY_DESCRIPTOR*)Walker)->PhysicalStart+MultU64x64(SIZE_4KB,((EFI_MEMORY_DESCRIPTOR*)Walker)->NumberOfPages)-1, ((EFI_MEMORY_DESCRIPTOR*)Walker)->NumberOfPages, ((EFI_MEMORY_DESCRIPTOR*)Walker)->Attribute);
191 ShellPrintHiiEx(-1, -1, NULL, (EFI_STRING_ID)(!Sfo?STRING_TOKEN (STR_MEMMAP_LIST_ITEM):STRING_TOKEN (STR_MEMMAP_LIST_ITEM_SFO)), gShellDebug1HiiHandle, !Sfo?NameEfiBootServicesCodeShort:NameEfiBootServicesCode, ((EFI_MEMORY_DESCRIPTOR*)Walker)->PhysicalStart, ((EFI_MEMORY_DESCRIPTOR*)Walker)->PhysicalStart+MultU64x64(SIZE_4KB,((EFI_MEMORY_DESCRIPTOR*)Walker)->NumberOfPages)-1, ((EFI_MEMORY_DESCRIPTOR*)Walker)->NumberOfPages, ((EFI_MEMORY_DESCRIPTOR*)Walker)->Attribute);
196 ShellPrintHiiEx(-1, -1, NULL, (EFI_STRING_ID)(!Sfo?STRING_TOKEN (STR_MEMMAP_LIST_ITEM):STRING_TOKEN (STR_MEMMAP_LIST_ITEM_SFO)), gShellDebug1HiiHandle, !Sfo?NameEfiBootServicesDataShort:NameEfiBootServicesData, ((EFI_MEMORY_DESCRIPTOR*)Walker)->PhysicalStart, ((EFI_MEMORY_DESCRIPTOR*)Walker)->PhysicalStart+MultU64x64(SIZE_4KB,((EFI_MEMORY_DESCRIPTOR*)Walker)->NumberOfPages)-1, ((EFI_MEMORY_DESCRIPTOR*)W (…)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Pei/Dispatcher/
Dispatcher.c 228 if(MemoryHob->AllocDescriptor.MemoryBaseAddress == ResourceHob->PhysicalStart &&
229 MemoryHob->AllocDescriptor.MemoryBaseAddress + MemoryHob->AllocDescriptor.MemoryLength == ResourceHob->PhysicalStart + ResourceHob->ResourceLength) {
307 ResourceHob->PhysicalStart + ResourceHob->ResourceLength > MAX_ADDRESS) {
331 if ((ResourceHob->PhysicalStart <= NextResourceHob->PhysicalStart &&
332 ResourceHob->PhysicalStart + ResourceHob->ResourceLength >= NextResourceHob->PhysicalStart)||
333 (ResourceHob->PhysicalStart >= NextResourceHob->PhysicalStart&&
334 ResourceHob->PhysicalStart <= NextResourceHob->PhysicalStart + NextResourceHob->ResourceLength)) {
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/Binary/D02/MemoryInitPei/
MemoryInitPeiLib.c 143 (PcdGet64(PcdFdBaseAddress) >= NextHob.ResourceDescriptor->PhysicalStart) &&
144 (FdTop <= NextHob.ResourceDescriptor->PhysicalStart + NextHob.ResourceDescriptor->ResourceLength))
148 ResourceTop = NextHob.ResourceDescriptor->PhysicalStart + ResourceLength;
150 if (PcdGet64(PcdFdBaseAddress) == NextHob.ResourceDescriptor->PhysicalStart) {
161 NextHob.ResourceDescriptor->PhysicalStart += PcdGet32(PcdFdSize);
172 NextHob.ResourceDescriptor->ResourceLength = PcdGet64(PcdFdBaseAddress) - NextHob.ResourceDescriptor->PhysicalStart;
175 if (FdTop < NextHob.ResourceDescriptor->PhysicalStart + ResourceLength) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Misc/
PropertiesTable.c 153 Sort memory map entries based upon PhysicalStart, from low to high.
178 if (MemoryMapEntry->PhysicalStart > NextMemoryMapEntry->PhysicalStart) {
231 ((MemoryMapEntry->PhysicalStart + MemoryBlockLength) == NextMemoryMapEntry->PhysicalStart)) {
369 PhysicalEnd = TempRecord.PhysicalStart + EfiPagesToSize(TempRecord.NumberOfPages);
385 if (TempRecord.PhysicalStart <= ImageRecordCodeSection->CodeSegmentBase) {
394 NewRecord->PhysicalStart = TempRecord.PhysicalStart;
396 NewRecord->NumberOfPages = EfiSizeToPages(ImageRecordCodeSection->CodeSegmentBase - NewRecord->PhysicalStart);
    [all...]
  /device/linaro/bootloader/edk2/IntelFsp2Pkg/Library/BaseFspPlatformLib/
FspPlatformMemory.c 112 if (Hob.ResourceDescriptor->PhysicalStart >= BASE_1MB &&
113 Hob.ResourceDescriptor->PhysicalStart < (EFI_PHYSICAL_ADDRESS) BASE_4GB) {
115 } else if (Hob.ResourceDescriptor->PhysicalStart >= (EFI_PHYSICAL_ADDRESS) BASE_4GB) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/SmmCommunicationBufferDxe/
SmmCommunicationBufferDxe.c 75 Entry->PhysicalStart = (EFI_PHYSICAL_ADDRESS)(UINTN)AllocateReservedPages (DEFAULT_COMMON_PI_SMM_COMMUNIATION_REGION_PAGES);
76 ASSERT(Entry->PhysicalStart != 0);
87 DEBUG ((EFI_D_INFO, " PhysicalStart - 0x%lx\n", Entry->PhysicalStart));
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformPei/
MemoryCallback.c 82 if (Hob.ResourceDescriptor->PhysicalStart >= 0x100000 &&
83 Hob.ResourceDescriptor->PhysicalStart < (EFI_PHYSICAL_ADDRESS) 0x100000000) {
85 } else if (Hob.ResourceDescriptor->PhysicalStart >= (EFI_PHYSICAL_ADDRESS) 0x100000000) {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Guid/SmramMemoryReserve/
SmramMemoryReserve.h 37 EFI_PHYSICAL_ADDRESS PhysicalStart; // Phsyical location in DRAM
39 // May or may not match PhysicalStart
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/PropertiesTableAttributesDxe/
PropertiesTableAttributesDxe.c 68 if (MemoryMapEntry->PhysicalStart < BASE_1MB) {
88 MemoryMapEntry->PhysicalStart,
89 MemoryMapEntry->PhysicalStart + EfiPagesToSize (MemoryMapEntry->NumberOfPages),
93 MemoryMapEntry->PhysicalStart,
  /device/linaro/bootloader/edk2/OvmfPkg/SmmAccess/
SmramInternal.c 161 SmramMap[DescIdxSmmS3ResumeState].PhysicalStart = TsegMemoryBase;
177 SmramMap[DescIdxMain].PhysicalStart =
178 SmramMap[DescIdxSmmS3ResumeState].PhysicalStart +
180 SmramMap[DescIdxMain].CpuStart = SmramMap[DescIdxMain].PhysicalStart;
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/FspSupport/Library/PeiFspHobProcessLibVlv2/
FspHobProcessLibVlv2.c 195 DEBUG((DEBUG_INFO, "PhysicalStart: 0x%x\n", Hob.ResourceDescriptor->PhysicalStart));
201 && (Hob.ResourceDescriptor->PhysicalStart >= BASE_1MB)
202 && (Hob.ResourceDescriptor->PhysicalStart + Hob.ResourceDescriptor->ResourceLength <= BASE_4GB)) {
209 && (Hob.ResourceDescriptor->PhysicalStart >= BASE_1MB)
210 && (Hob.ResourceDescriptor->PhysicalStart + Hob.ResourceDescriptor->ResourceLength <= BASE_4GB)
213 FspMemoryBase = Hob.ResourceDescriptor->PhysicalStart;
219 && (Hob.ResourceDescriptor->PhysicalStart >= 0x100000)
220 && (Hob.ResourceDescriptor->PhysicalStart + Hob.ResourceDescriptor->ResourceLength <= 0x100000000)
223 TsegBase = Hob.ResourceDescriptor->PhysicalStart;
    [all...]
  /device/linaro/bootloader/edk2/IntelFsp2WrapperPkg/Library/PeiFspWrapperHobProcessLibSample/
FspWrapperHobProcessLibSample.c 188 DEBUG((DEBUG_INFO, "PhysicalStart: 0x%x\n", Hob.ResourceDescriptor->PhysicalStart));
194 && (Hob.ResourceDescriptor->PhysicalStart >= BASE_1MB)
195 && (Hob.ResourceDescriptor->PhysicalStart + Hob.ResourceDescriptor->ResourceLength <= BASE_4GB)) {
202 && (Hob.ResourceDescriptor->PhysicalStart >= BASE_1MB)
203 && (Hob.ResourceDescriptor->PhysicalStart + Hob.ResourceDescriptor->ResourceLength <= BASE_4GB)
206 FspMemoryBase = Hob.ResourceDescriptor->PhysicalStart;
217 Hob.ResourceDescriptor->PhysicalStart,
  /device/linaro/bootloader/edk2/IntelFspWrapperPkg/Library/PeiFspHobProcessLibSample/
FspHobProcessLibSample.c 186 DEBUG((DEBUG_INFO, "PhysicalStart: 0x%x\n", Hob.ResourceDescriptor->PhysicalStart));
192 && (Hob.ResourceDescriptor->PhysicalStart >= BASE_1MB)
193 && (Hob.ResourceDescriptor->PhysicalStart + Hob.ResourceDescriptor->ResourceLength <= BASE_4GB)) {
200 && (Hob.ResourceDescriptor->PhysicalStart >= BASE_1MB)
201 && (Hob.ResourceDescriptor->PhysicalStart + Hob.ResourceDescriptor->ResourceLength <= BASE_4GB)
204 FspMemoryBase = Hob.ResourceDescriptor->PhysicalStart;
215 Hob.ResourceDescriptor->PhysicalStart,
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey/Library/HiKeyLib/
HiKeyMem.c 114 (HiKeyReservedMemoryBuffer[Index].Offset >= NextHob.ResourceDescriptor->PhysicalStart) &&
116 NextHob.ResourceDescriptor->PhysicalStart + NextHob.ResourceDescriptor->ResourceLength)) {
119 ResourceTop = NextHob.ResourceDescriptor->PhysicalStart + ResourceLength;
128 NextHob.ResourceDescriptor->ResourceLength = HiKeyReservedMemoryBuffer[Index].Offset - NextHob.ResourceDescriptor->PhysicalStart;
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Include/Library/
ArmPlatformLib.h 39 EFI_PHYSICAL_ADDRESS PhysicalStart;
  /device/linaro/bootloader/edk2/IntelFsp2WrapperPkg/Library/PeiFspWrapperApiTestLib/
FspWrapperApiTest.c 48 SetMem ((VOID *)(UINTN)Hob.ResourceDescriptor->PhysicalStart, (UINTN)Hob.ResourceDescriptor->ResourceLength, 0x5A);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/CapsulePei/Common/
CommonHeader.h 42 EFI_PHYSICAL_ADDRESS PhysicalStart;
  /device/linaro/bootloader/edk2/EmulatorPkg/PlatformSmbiosDxe/
PlatformSmbiosDxe.c 68 gSmbiosType19Template.ExtendedStartingAddress = HobPtr.ResourceDescriptor->PhysicalStart;
70 HobPtr.ResourceDescriptor->PhysicalStart +

Completed in 740 milliseconds

1 2 3 4