Home
last modified time | relevance | path

Searched refs:InitrdImageBase (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/ArmPkg/Application/LinuxLoader/Arm/
DLinuxStarter.c174 EFI_PHYSICAL_ADDRESS InitrdImageBase = 0; in BootLinuxAtag() local
189 InitrdImageBase = LINUX_KERNEL_MAX_OFFSET; in BootLinuxAtag()
190 …Status = BdsLoadImage (InitrdDevicePath, AllocateMaxAddress, &InitrdImageBase, &InitrdImageBaseSiz… in BootLinuxAtag()
192 …Status = BdsLoadImage (InitrdDevicePath, AllocateAnyPages, &InitrdImageBase, &InitrdImageBaseSize); in BootLinuxAtag()
200 if (*(UINT32*)((UINTN)InitrdImageBase) == LINUX_UIMAGE_SIGNATURE) { in BootLinuxAtag()
202 InitrdImage = (EFI_PHYSICAL_ADDRESS)((UINTN)InitrdImageBase + 64); in BootLinuxAtag()
205 InitrdImage = InitrdImageBase; in BootLinuxAtag()
225 gBS->FreePages (InitrdImageBase, EFI_SIZE_TO_PAGES (InitrdImageBaseSize)); in BootLinuxAtag()
263 EFI_PHYSICAL_ADDRESS InitrdImageBase = 0; in BootLinuxFdt() local
277 InitrdImageBase = LINUX_KERNEL_MAX_OFFSET; in BootLinuxFdt()
[all …]
/device/linaro/bootloader/edk2/ArmPkg/Application/LinuxLoader/AArch64/
DLinuxStarter.c204 EFI_PHYSICAL_ADDRESS InitrdImageBase; in BootLinuxFdt() local
216 InitrdImageBase = 0; in BootLinuxFdt()
245 InitrdImageBase = LINUX_KERNEL_MAX_OFFSET; in BootLinuxFdt()
246 …Status = BdsLoadImage (InitrdDevicePath, AllocateMaxAddress, &InitrdImageBase, &InitrdImageBaseSiz… in BootLinuxFdt()
248 …Status = BdsLoadImage (InitrdDevicePath, AllocateAnyPages, &InitrdImageBase, &InitrdImageBaseSize); in BootLinuxFdt()
256 if (*(UINTN*)((UINTN)InitrdImageBase) == LINUX_UIMAGE_SIGNATURE) { in BootLinuxFdt()
258 InitrdImage = (EFI_PHYSICAL_ADDRESS)((UINTN)InitrdImageBase + 64); in BootLinuxFdt()
261 InitrdImage = InitrdImageBase; in BootLinuxFdt()
363 gBS->FreePages (InitrdImageBase, EFI_SIZE_TO_PAGES (InitrdImageBaseSize)); in BootLinuxFdt()