Lines Matching defs:PrivateData

641   PCI_ROOT_BRIDGE_INSTANCE          *PrivateData;
644 PrivateData = DRIVER_INSTANCE_FROM_PCI_ROOT_BRIDGE_IO_THIS (Protocol);
650 PrivateData->MemBase = ResAppeture->MemBase;
651 PrivateData->IoBase = ResAppeture->IoBase;
657 PrivateData->MemLimit = ResAppeture->MemLimit;
658 PrivateData->IoLimit = ResAppeture->IoLimit;
663 PrivateData->BusBase = ResAppeture->BusBase;
664 PrivateData->BusLimit = ResAppeture->BusLimit;
670 PrivateData->ResAllocNode[Index].Type = Index;
671 PrivateData->ResAllocNode[Index].Base = 0;
672 PrivateData->ResAllocNode[Index].Length = 0;
673 PrivateData->ResAllocNode[Index].Status = ResNone;
676 PrivateData->PciAddress = 0xCF8;
677 PrivateData->PciData = 0xCFC;
679 PrivateData->RootBridgeAttrib = Attri;
681 PrivateData->Supports = EFI_PCI_ATTRIBUTE_IDE_PRIMARY_IO | EFI_PCI_ATTRIBUTE_IDE_SECONDARY_IO | \
685 PrivateData->Attributes = PrivateData->Supports;
760 PCI_ROOT_BRIDGE_INSTANCE *PrivateData;
804 PrivateData = DRIVER_INSTANCE_FROM_PCI_ROOT_BRIDGE_IO_THIS (This);
822 Base = PrivateData->IoBase;
823 Limit = PrivateData->IoLimit;
825 Base = PrivateData->MemBase;
826 Limit = PrivateData->MemLimit;
829 if (PciRbAddr->Bus < PrivateData->BusBase || PciRbAddr->Bus > PrivateData->BusLimit) {
2031 PCI_ROOT_BRIDGE_INSTANCE *PrivateData;
2033 PrivateData = DRIVER_INSTANCE_FROM_PCI_ROOT_BRIDGE_IO_THIS(This);
2043 *Supported = PrivateData->Supports;
2047 *Attributes = PrivateData->Attributes;
2092 PCI_ROOT_BRIDGE_INSTANCE *PrivateData;
2094 PrivateData = DRIVER_INSTANCE_FROM_PCI_ROOT_BRIDGE_IO_THIS(This);
2097 if ((Attributes & (~(PrivateData->Supports))) != 0) {
2108 if (Attributes & (~PrivateData->Attributes)) {
2145 PCI_ROOT_BRIDGE_INSTANCE *PrivateData;
2148 PrivateData = DRIVER_INSTANCE_FROM_PCI_ROOT_BRIDGE_IO_THIS (This);
2151 if (PrivateData->ResAllocNode[Index].Status == ResAllocated) {
2152 Configuration.SpaceDesp[Index].AddrRangeMin = PrivateData->ResAllocNode[Index].Base;
2153 Configuration.SpaceDesp[Index].AddrRangeMax = PrivateData->ResAllocNode[Index].Base + PrivateData->ResAllocNode[Index].Length - 1;
2154 Configuration.SpaceDesp[Index].AddrLen = PrivateData->ResAllocNode[Index].Length;