Home
last modified time | relevance | path

Searched refs:Pxe (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/EmbeddedPkg/Library/EblNetworkLib/
DEblNetworkLib.c34 EFI_PXE_BASE_CODE_PROTOCOL *Pxe; in EblGetCurrentIpAddress() local
36 Status = gBS->LocateProtocol (&gEfiPxeBaseCodeProtocolGuid, NULL, (VOID **)&Pxe); in EblGetCurrentIpAddress()
41 Status = Pxe->Start (Pxe, gUseIpv6); in EblGetCurrentIpAddress()
46 CopyMem (Ip, &Pxe->Mode->StationIp, sizeof (EFI_IP_ADDRESS)); in EblGetCurrentIpAddress()
95 EFI_PXE_BASE_CODE_PROTOCOL *Pxe; in EblPerformDHCP() local
97 Status = gBS->LocateProtocol (&gEfiPxeBaseCodeProtocolGuid, NULL, (VOID **)&Pxe); in EblPerformDHCP()
102 Status = Pxe->Start (Pxe, gUseIpv6); in EblPerformDHCP()
107 Status = Pxe->Dhcp(Pxe, TRUE); in EblPerformDHCP()
120 EFI_PXE_BASE_CODE_PROTOCOL *Pxe; in EblSetStationIp() local
122 Status = gBS->LocateProtocol (&gEfiPxeBaseCodeProtocolGuid, NULL, (VOID **)&Pxe); in EblSetStationIp()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/SnpDxe/
DSnp.c132 PXE_UNDI *Pxe; in SimpleNetworkDriverSupported() local
180 Pxe = (PXE_UNDI *) (UINTN) (NiiProtocol->Id); in SimpleNetworkDriverSupported()
185 if (Pxe->hw.Signature != PXE_ROMID_SIGNATURE) { in SimpleNetworkDriverSupported()
191 if (Pxe->hw.Rev < PXE_ROMID_REV) { in SimpleNetworkDriverSupported()
197 if (Pxe->hw.MajorVer < PXE_ROMID_MAJORVER) { in SimpleNetworkDriverSupported()
203 } else if (Pxe->hw.MajorVer == PXE_ROMID_MAJORVER && Pxe->hw.MinorVer < PXE_ROMID_MINORVER) { in SimpleNetworkDriverSupported()
211 if ((Pxe->hw.Implementation & PXE_ROMID_IMP_HW_UNDI) == 0) { in SimpleNetworkDriverSupported()
212 if (Pxe->sw.EntryPoint < Pxe->sw.Len) { in SimpleNetworkDriverSupported()
218 if (Pxe->sw.BusCnt == 0) { in SimpleNetworkDriverSupported()
268 PXE_UNDI *Pxe; in SimpleNetworkDriverStart() local
[all …]
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/BiosThunk/Snp16Dxe/
DMisc.c451 PXE_T *Pxe; in LaunchBaseCode() local
760 Pxe = (PXE_T *)(UINTN)((UndiLoaderTable->PXEptr.Segment << 4) + UndiLoaderTable->PXEptr.Offset); in LaunchBaseCode()
761 SimpleNetworkDevice->Nii.Id = (UINT64)(UINTN) Pxe; in LaunchBaseCode()
768 if (CompareMem (Pxe->Signature, PXE_SIG, sizeof Pxe->Signature) != 0) { in LaunchBaseCode()
776 if (CalculateSum8 ((UINT8 *) Pxe, Pxe->StructLength) != 0) { in LaunchBaseCode()
781 if (Pxe->StructLength < (UINT8 *) &Pxe->FirstSelector - (UINT8 *) Pxe->Signature) { in LaunchBaseCode()
786 if ((((UINTN) Pxe->Undi.Segment) << 4) + Pxe->Undi.Offset != (UINTN) RomIdTableAddress) { in LaunchBaseCode()
794 SimpleNetworkDevice->PxeEntrySegment = Pxe->EntryPointSP.Segment; in LaunchBaseCode()
801 SimpleNetworkDevice->PxeEntryOffset = Pxe->EntryPointSP.Offset; in LaunchBaseCode()
DSnp16Dxe.inf42 Pxe.h
DBiosSnp16.h77 PXE_T *Pxe; ///< Pointer to !PXE structure member
/device/linaro/bootloader/edk2/ArmPkg/Library/BdsLib/
DBdsFilePath.c747 EFI_PXE_BASE_CODE_PROTOCOL *Pxe; in BdsPxeLoadImage() local
769 Status = gBS->LocateProtocol (&gEfiPxeBaseCodeProtocolGuid, NULL, (VOID **)&Pxe); in BdsPxeLoadImage()
772 Pxe->Stop (Pxe); in BdsPxeLoadImage()