Home | History | Annotate | Download | only in FirmwareUpdate

Lines Matching defs:Address

54   IN  EFI_PHYSICAL_ADDRESS  Address,

61 if (Address >= mRegionInfo[Index].Base &&
62 Address < (mRegionInfo[Index].Base + mRegionInfo[Index].Size)
77 IN EFI_PHYSICAL_ADDRESS Address
87 Status = GetRegionIndex (Address, &Index);
97 IN EFI_PHYSICAL_ADDRESS Address,
104 Status = GetRegionIndex (Address, &Index);
222 // Parse the MAC address here.
231 // Save the MAC address to mInputData.MacValue.
277 EFI_PHYSICAL_ADDRESS Address;
288 Address = 0;
374 Address = PcdGet32 (PcdFlashChipBase);
385 // Handle block based on address and contents.
387 if (!UpdateBlock (Address)) {
388 DEBUG((EFI_D_INFO, "Skipping block at 0x%lx\n", Address));
389 } else if (!EFI_ERROR (InternalCompareBlock (Address, Buffer))) {
390 DEBUG((EFI_D_INFO, "Skipping block at 0x%lx (already programmed)\n", Address));
408 Status = InternalEraseBlock (Address);
416 Address,
430 Address += BLOCK_SIZE;
506 BaseAddress - Base address of the block to be erased.
595 BaseAddress - Base address of the block.
727 Read NumBytes bytes of data from the address specified by
730 @param[in] Address The starting physical address of the read.
742 IN UINTN Address,
752 Offset = Address - (UINTN)PcdGet32 (PcdFlashChipBase);
771 Write NumBytes bytes of data from Buffer to the address specified by
774 @param[in] Address The starting physical address of the write.
786 IN UINTN Address,
797 ASSERT (Address >= (UINTN)PcdGet32 (PcdFlashChipBase));
799 Offset = Address - (UINTN)PcdGet32 (PcdFlashChipBase);
841 Erase the block starting at Address.
843 @param[in] Address The starting physical address of the block to be erased.
845 is at the starting address of this block.
856 IN UINTN Address,
865 ASSERT (Address >= (UINTN)PcdGet32 (PcdFlashChipBase));
867 Offset = Address - (UINTN)PcdGet32 (PcdFlashChipBase);