Searched defs:Bridge (Results 1 - 11 of 11) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/PciBusDxe/
H A DPciDeviceSupport.c53 @param Bridge The PCI bridge.
59 IN PCI_IO_DEVICE *Bridge,
63 InsertTailList (&Bridge->ChildList, &(PciDeviceNode->Link));
64 PciDeviceNode->Parent = Bridge;
113 Bridge itself is not included.
115 @param Bridge A pointer to the PCI_IO_DEVICE.
120 IN PCI_IO_DEVICE *Bridge
126 while (!IsListEmpty (&Bridge->ChildList)) {
128 CurrentLink = Bridge->ChildList.ForwardLink;
419 @param Bridge Th
58 InsertPciDevice( IN PCI_IO_DEVICE *Bridge, IN PCI_IO_DEVICE *PciDeviceNode ) argument
960 PciDeviceExisted( IN PCI_IO_DEVICE *Bridge, IN PCI_IO_DEVICE *PciIoDevice ) argument
[all...]
H A DPciResourceSupport.c95 @param Bridge PCI resource node for bridge.
101 IN OUT PCI_RESOURCE_NODE *Bridge,
110 ASSERT (Bridge != NULL);
113 InsertHeadList (&Bridge->ChildList, &ResNode->Link);
115 CurrentLink = Bridge->ChildList.ForwardLink->ForwardLink;
116 while (CurrentLink != &Bridge->ChildList) {
185 @param Bridge PCI resource node for bridge.
190 IN PCI_RESOURCE_NODE *Bridge
233 if (Bridge == NULL) {
237 CurrentLink = Bridge
100 InsertResourceNode( IN OUT PCI_RESOURCE_NODE *Bridge, IN PCI_RESOURCE_NODE *ResNode ) argument
750 CreateResourceMap( IN PCI_IO_DEVICE *Bridge, IN OUT PCI_RESOURCE_NODE *IoNode, IN OUT PCI_RESOURCE_NODE *Mem32Node, IN OUT PCI_RESOURCE_NODE *PMem32Node, IN OUT PCI_RESOURCE_NODE *Mem64Node, IN OUT PCI_RESOURCE_NODE *PMem64Node ) argument
1029 DegradeResource( IN PCI_IO_DEVICE *Bridge, IN PCI_RESOURCE_NODE *Mem32Node, IN PCI_RESOURCE_NODE *PMem32Node, IN PCI_RESOURCE_NODE *Mem64Node, IN PCI_RESOURCE_NODE *PMem64Node ) argument
1182 BridgeSupportResourceDecode( IN PCI_IO_DEVICE *Bridge, IN UINT32 Decode ) argument
[all...]
H A DPciEnumerator.c311 @param Bridge Given parent's root bridge.
318 IN PCI_IO_DEVICE *Bridge,
329 CurrentLink = Bridge->ChildList.ForwardLink;
330 while (CurrentLink != NULL && CurrentLink != &Bridge->ChildList) {
355 @param Bridge Parent root bridge instance.
365 IN PCI_IO_DEVICE *Bridge,
380 PciRootBridgeIo = Bridge->PciRootBridgeIo;
410 Status = PciAllocateBusNumber (Bridge, *SubBusNumber, 1, SubBusNumber);
454 Bridge,
552 @param Bridge Give
317 ProcessOptionRom( IN PCI_IO_DEVICE *Bridge, IN UINT64 RomBase, IN UINT64 MaxLength ) argument
364 PciAssignBusNumber( IN PCI_IO_DEVICE *Bridge, IN UINT8 StartBusNumber, OUT UINT8 *SubBusNumber ) argument
749 PCI_IO_DEVICE *Bridge; local
1092 ConstructAcpiResourceRequestor( IN PCI_IO_DEVICE *Bridge, IN PCI_RESOURCE_NODE *IoNode, IN PCI_RESOURCE_NODE *Mem32Node, IN PCI_RESOURCE_NODE *PMem32Node, IN PCI_RESOURCE_NODE *Mem64Node, IN PCI_RESOURCE_NODE *PMem64Node, OUT VOID **Config ) argument
1629 GetResourceBaseFromBridge( IN PCI_IO_DEVICE *Bridge, OUT UINT64 *IoBase, OUT UINT64 *Mem32Base, OUT UINT64 *PMem32Base, OUT UINT64 *Mem64Base, OUT UINT64 *PMem64Base ) argument
1898 PreprocessController( IN PCI_IO_DEVICE *Bridge, IN UINT8 Bus, IN UINT8 Device, IN UINT8 Func, IN EFI_PCI_CONTROLLER_RESOURCE_ALLOCATION_PHASE Phase ) argument
2044 PCI_IO_DEVICE *Bridge; local
[all...]
H A DPciEnumeratorSupport.c84 @param Bridge Parent bridge instance.
93 IN PCI_IO_DEVICE *Bridge,
116 Bridge->PciRootBridgeIo,
127 PreprocessController (Bridge, (UINT8) StartBusNumber, Device, Func, EfiPciBeforeResourceCollection);
133 Bridge,
191 @param Bridge Parent bridge instance.
204 IN PCI_IO_DEVICE *Bridge,
229 Bridge,
244 Bridge,
259 Bridge,
92 PciPciDeviceInfoCollector( IN PCI_IO_DEVICE *Bridge, IN UINT8 StartBusNumber ) argument
203 PciSearchDevice( IN PCI_IO_DEVICE *Bridge, IN PCI_TYPE00 *Pci, IN UINT8 Bus, IN UINT8 Device, IN UINT8 Func, OUT PCI_IO_DEVICE **PciDevice ) argument
371 GatherDeviceInfo( IN PCI_IO_DEVICE *Bridge, IN PCI_TYPE00 *Pci, IN UINT8 Bus, IN UINT8 Device, IN UINT8 Func ) argument
449 GatherPpbInfo( IN PCI_IO_DEVICE *Bridge, IN PCI_TYPE00 *Pci, IN UINT8 Bus, IN UINT8 Device, IN UINT8 Func ) argument
615 GatherP2CInfo( IN PCI_IO_DEVICE *Bridge, IN PCI_TYPE00 *Pci, IN UINT8 Bus, IN UINT8 Device, IN UINT8 Func ) argument
1995 CreatePciIoDevice( IN PCI_IO_DEVICE *Bridge, IN PCI_TYPE00 *Pci, IN UINT8 Bus, IN UINT8 Device, IN UINT8 Func ) argument
2595 ResetAllPpbBusNumber( IN PCI_IO_DEVICE *Bridge, IN UINT8 StartBusNumber ) argument
[all...]
H A DPciLib.c113 @param Bridge Bridge device instance.
119 IN PCI_IO_DEVICE *Bridge
130 CurrentLink = Bridge->ChildList.ForwardLink;
132 while (CurrentLink != NULL && CurrentLink != &Bridge->ChildList) {
266 Dump the resource map of all the devices under Bridge.
268 @param[in] Bridge Bridge device instance.
277 IN PCI_IO_DEVICE *Bridge,
299 Bridge
276 DumpResourceMap( IN PCI_IO_DEVICE *Bridge, IN PCI_RESOURCE_NODE *IoNode, IN PCI_RESOURCE_NODE *Mem32Node, IN PCI_RESOURCE_NODE *PMem32Node, IN PCI_RESOURCE_NODE *Mem64Node, IN PCI_RESOURCE_NODE *PMem64Node ) argument
913 PciAllocateBusNumber( IN PCI_IO_DEVICE *Bridge, IN UINT8 StartBusNumber, IN UINT8 NumberOfBuses, OUT UINT8 *NextBusNumber ) argument
972 PciScanBus( IN PCI_IO_DEVICE *Bridge, IN UINT8 StartBusNumber, OUT UINT8 *SubBusNumber, OUT UINT8 *PaddedBusRange ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DPci.c116 L"Bridge Device",
1530 @param[in] Bridge Bridge specific data region in PCI configuration space.
1538 IN PCI_BRIDGE_HEADER *Bridge,
1610 Explain each meaningful bit of register Bridge Control.
1612 @param[in] BridgeControl Points to the content of register Bridge Control.
1968 L"PCI Express to PCI/PCI-X Bridge",
1969 L"PCI/PCI-X to PCI Express Bridge",
2769 &(ConfigSpace->NonCommon.Bridge),
2773 CapPtr = ConfigSpace->NonCommon.Bridge
2957 PciExplainBridgeData( IN PCI_BRIDGE_HEADER *Bridge, IN UINT64 Address, IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *IoDev ) argument
[all...]
H A DPci.h387 UINT16 BridgeControl; // Bridge Control
415 UINT16 BridgeControl; // Bridge Control
432 PCI_BRIDGE_HEADER Bridge; member in union:__anon12829
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/IndustryStandard/
H A DPci22.h6 PCI-to-PCI Bridge Architecture Specification, Revision 1.2
75 /// PCI-PCI Bridge header region in PCI Configuration Space
76 /// Section 3.2, PCI-PCI Bridge Architecture, Version 1.2
104 /// PCI-to-PCI Bridge Configuration Space
105 /// Section 3.2, PCI-PCI Bridge Architecture, Version 1.2
109 PCI_BRIDGE_CONTROL_REGISTER Bridge; member in struct:__anon11698
114 PCI_TYPE01 Bridge; member in union:__anon11699
140 UINT16 BridgeControl; ///< Bridge Control
514 /// Rom Base Address in Bridge, defined in PCI-to-PCI Bridge Architecur
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Include/IndustryStandard/
H A Dpci22.h94 PCI_BRIDGE_CONTROL_REGISTER Bridge; member in struct:__anon10186
99 PCI_TYPE01 Bridge; member in union:__anon10187
122 UINT16 BridgeControl; // Bridge Control
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/IndustryStandard/
H A DPci22.h6 PCI-to-PCI Bridge Architecture Specification, Revision 1.2
77 /// PCI-PCI Bridge header region in PCI Configuration Space
78 /// Section 3.2, PCI-PCI Bridge Architecture, Version 1.2
106 /// PCI-to-PCI Bridge Configuration Space
107 /// Section 3.2, PCI-PCI Bridge Architecture, Version 1.2
111 PCI_BRIDGE_CONTROL_REGISTER Bridge; member in struct:__anon15503
116 PCI_TYPE01 Bridge; member in union:__anon15504
142 UINT16 BridgeControl; ///< Bridge Control
516 /// Rom Base Address in Bridge, defined in PCI-to-PCI Bridge Architecur
[all...]
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxb-impl.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/xml/ com/sun/xml/bind/ ...

Completed in 57 milliseconds