Searched defs:PciIoDevice (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/PciBusDxe/
H A DPciDriverOverride.c20 @param PciIoDevice PCI Device instance.
25 IN OUT PCI_IO_DEVICE *PciIoDevice
28 PciIoDevice->PciDriverOverride.GetDriver = GetDriver;
55 PCI_IO_DEVICE *PciIoDevice; local
59 PciIoDevice = PCI_IO_DEVICE_FROM_PCI_DRIVER_OVERRIDE_THIS (This);
61 CurrentLink = PciIoDevice->OptionRomDriverList.ForwardLink;
63 while (CurrentLink != NULL && CurrentLink != &PciIoDevice->OptionRomDriverList) {
75 if (CurrentLink->ForwardLink == &PciIoDevice->OptionRomDriverList ||
97 @param PciIoDevice Instance of PciIo device.
107 IN PCI_IO_DEVICE *PciIoDevice,
106 AddDriver( IN PCI_IO_DEVICE *PciIoDevice, IN EFI_HANDLE DriverImageHandle ) argument
[all...]
H A DPciCommand.c20 @param PciIoDevice Pointer to instance of PCI_IO_DEVICE.
31 IN PCI_IO_DEVICE *PciIoDevice,
43 PciIo = &PciIoDevice->PciIo;
80 @param PciIoDevice Pointer to instance of PCI_IO_DEVICE.
88 IN PCI_IO_DEVICE *PciIoDevice
91 if ((PciIoDevice->Pci.Hdr.Status & EFI_PCI_STATUS_CAPABILITY) != 0) {
101 @param PciIoDevice A pointer to the PCI_IO_DEVICE.
113 IN PCI_IO_DEVICE *PciIoDevice,
126 if (!PciCapabilitySupport (PciIoDevice)) {
135 if (IS_CARDBUS_BRIDGE (&PciIoDevice
30 PciOperateRegister( IN PCI_IO_DEVICE *PciIoDevice, IN UINT16 Command, IN UINT8 Offset, IN UINT8 Operation, OUT UINT16 *PtrCommand ) argument
112 LocateCapabilityRegBlock( IN PCI_IO_DEVICE *PciIoDevice, IN UINT8 CapId, IN OUT UINT8 *Offset, OUT UINT8 *NextRegBlock OPTIONAL ) argument
196 LocatePciExpressCapabilityRegBlock( IN PCI_IO_DEVICE *PciIoDevice, IN UINT16 CapId, IN OUT UINT32 *Offset, OUT UINT32 *NextRegBlock OPTIONAL ) argument
[all...]
H A DPciDeviceSupport.c88 @param PciIoDevice A pointer to the PCI_IO_DEVICE to be destoried.
93 IN PCI_IO_DEVICE *PciIoDevice
96 ASSERT (PciIoDevice != NULL);
100 if (PciIoDevice->ResourcePaddingDescriptors != NULL) {
101 FreePool (PciIoDevice->ResourcePaddingDescriptors);
104 if (PciIoDevice->DevicePath != NULL) {
105 FreePool (PciIoDevice->DevicePath);
108 FreePool (PciIoDevice);
197 @param PciIoDevice A PCI_IO_DEVICE pointer to the PCI IO device to be registered.
207 IN PCI_IO_DEVICE *PciIoDevice,
205 RegisterPciDevice( IN EFI_HANDLE Controller, IN PCI_IO_DEVICE *PciIoDevice, OUT EFI_HANDLE *Handle OPTIONAL ) argument
479 PCI_IO_DEVICE *PciIoDevice; local
640 PCI_IO_DEVICE *PciIoDevice; local
[all...]
H A DPciOptionRomSupport.c20 @param PciIoDevice PCI IO device instance.
39 IN PCI_IO_DEVICE *PciIoDevice,
65 (EfiOpRomImageNode->EndingOffset >= PciIoDevice->RomSize) ||
72 (UINT8 *) PciIoDevice->PciIo.RomImage + EfiOpRomImageNode->StartingOffset
165 @param PciIoDevice PCI IO Device.
170 IN PCI_IO_DEVICE *PciIoDevice
173 PciIoDevice->LoadFile2.LoadFile = LoadFile2;
209 PCI_IO_DEVICE *PciIoDevice; local
214 PciIoDevice = PCI_IO_DEVICE_FROM_LOAD_FILE2_THIS (This);
217 PciIoDevice,
38 LocalLoadFile2( IN PCI_IO_DEVICE *PciIoDevice, IN EFI_DEVICE_PATH_PROTOCOL *FilePath, IN OUT UINTN *BufferSize, IN VOID *Buffer OPTIONAL ) argument
[all...]
H A DPciIo.c52 @param PciIoDevice Pci device instance.
57 IN PCI_IO_DEVICE *PciIoDevice
60 CopyMem (&PciIoDevice->PciIo, &mPciIoInterface, sizeof (EFI_PCI_IO_PROTOCOL));
66 @param PciIoDevice Pci device instance.
80 IN PCI_IO_DEVICE *PciIoDevice,
103 if (!CheckBarType (PciIoDevice, BarIndex, Type)) {
117 if ((*Offset + Count * (UINTN)(1 << Width)) - 1 >= PciIoDevice->PciBar[BarIndex].Length) {
121 *Offset = *Offset + PciIoDevice->PciBar[BarIndex].BaseAddress;
129 @param PciIoDevice Pci device instance.
141 IN PCI_IO_DEVICE *PciIoDevice,
79 PciIoVerifyBarAccess( IN PCI_IO_DEVICE *PciIoDevice, IN UINT8 BarIndex, IN PCI_BAR_TYPE Type, IN IN EFI_PCI_IO_PROTOCOL_WIDTH Width, IN IN UINTN Count, IN UINT64 *Offset ) argument
140 PciIoVerifyConfigAccess( IN PCI_IO_DEVICE *PciIoDevice, IN EFI_PCI_IO_PROTOCOL_WIDTH Width, IN UINTN Count, IN UINT64 *Offset ) argument
214 PCI_IO_DEVICE *PciIoDevice; local
321 PCI_IO_DEVICE *PciIoDevice; local
420 PCI_IO_DEVICE *PciIoDevice; local
499 PCI_IO_DEVICE *PciIoDevice; local
577 PCI_IO_DEVICE *PciIoDevice; local
655 PCI_IO_DEVICE *PciIoDevice; local
730 PCI_IO_DEVICE *PciIoDevice; local
799 PCI_IO_DEVICE *PciIoDevice; local
880 PCI_IO_DEVICE *PciIoDevice; local
969 PCI_IO_DEVICE *PciIoDevice; local
1023 PCI_IO_DEVICE *PciIoDevice; local
1075 PCI_IO_DEVICE *PciIoDevice; local
1129 PCI_IO_DEVICE *PciIoDevice; local
1168 PCI_IO_DEVICE *PciIoDevice; local
1209 PCI_IO_DEVICE *PciIoDevice; local
1238 CheckBarType( IN PCI_IO_DEVICE *PciIoDevice, IN UINT8 BarIndex, IN PCI_BAR_TYPE BarType ) argument
1284 ModifyRootBridgeAttributes( IN PCI_IO_DEVICE *PciIoDevice, IN UINT64 Attributes, IN EFI_PCI_IO_PROTOCOL_ATTRIBUTE_OPERATION Operation ) argument
1361 SupportPaletteSnoopAttributes( IN PCI_IO_DEVICE *PciIoDevice, IN EFI_PCI_IO_PROTOCOL_ATTRIBUTE_OPERATION Operation ) argument
1491 PCI_IO_DEVICE *PciIoDevice; local
1785 PCI_IO_DEVICE *PciIoDevice; local
1946 PCI_IO_DEVICE *PciIoDevice; local
2007 UpStreamBridgesAttributes( IN PCI_IO_DEVICE *PciIoDevice, IN EFI_PCI_IO_PROTOCOL_ATTRIBUTE_OPERATION Operation, IN UINT64 Attributes ) argument
[all...]
H A DPciEnumeratorSupport.c102 PCI_IO_DEVICE *PciIoDevice; local
138 &PciIoDevice
150 PciIo = &(PciIoDevice->PciIo);
161 GetResourcePaddingPpb (PciIoDevice);
167 PciIoDevice,
212 PCI_IO_DEVICE *PciIoDevice; local
214 PciIoDevice = NULL;
228 PciIoDevice = GatherP2CInfo (
235 if ((PciIoDevice != NULL) && gFullEnumeration) {
236 InitializeP2C (PciIoDevice);
381 PCI_IO_DEVICE *PciIoDevice; local
457 PCI_IO_DEVICE *PciIoDevice; local
623 PCI_IO_DEVICE *PciIoDevice; local
717 VfBarExisted( IN PCI_IO_DEVICE *PciIoDevice, IN UINTN Offset, OUT UINT32 *BarLengthValue, OUT UINT32 *OriginalBarValue ) argument
791 BarExisted( IN PCI_IO_DEVICE *PciIoDevice, IN UINTN Offset, OUT UINT32 *BarLengthValue, OUT UINT32 *OriginalBarValue ) argument
856 PciTestSupportedAttribute( IN PCI_IO_DEVICE *PciIoDevice, IN OUT UINT16 *Command, IN OUT UINT16 *BridgeControl, OUT UINT16 *OldCommand, OUT UINT16 *OldBridgeControl ) argument
930 PciSetDeviceAttribute( IN PCI_IO_DEVICE *PciIoDevice, IN UINT16 Command, IN UINT16 BridgeControl, IN UINTN Option ) argument
1045 GetFastBackToBackSupport( IN PCI_IO_DEVICE *PciIoDevice, IN UINT8 StatusIndex ) argument
1467 PciIovParseVfBar( IN PCI_IO_DEVICE *PciIoDevice, IN UINTN Offset, IN UINTN BarIndex ) argument
1666 PciParseBar( IN PCI_IO_DEVICE *PciIoDevice, IN UINTN Offset, IN UINTN BarIndex ) argument
2003 PCI_IO_DEVICE *PciIoDevice; local
[all...]

Completed in 50 milliseconds