HomeSort by relevance Sort by last modified time
    Searched refs:PciAddress (Results 1 - 25 of 41) sorted by null

1 2

  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Pci/Dxe/PciHostBridge/
PciHostBridgeSupport.c 25 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_PCI_ADDRESS PciAddress,
45 // GC_TODO: PciAddress - add argument and description to function comment
47 // GC_TODO: PciAddress - add argument and description to function comment
49 // GC_TODO: PciAddress - add argument and description to function comment
51 // GC_TODO: PciAddress - add argument and description to function comment
71 PciAddress.Register = PCI_LATENCY_TIMER_OFFSET;
75 *((UINT64 *) &PciAddress),
88 *((UINT64 *) &PciAddress),
97 PciAddress.Register = PCI_CACHELINE_SIZE_OFFSET;
102 *((UINT64 *) &PciAddress),
    [all...]
PciHostBridge.h 289 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_PCI_ADDRESS PciAddress,
303 PciAddress - Address of the controller on the PCI bus.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/Ia32/
PlatformIoLib.c 47 PciAddress to be written to Config Port
86 UINT32 PciAddress;
90 PciAddress = GetPciAddress (Segment, Bus, DevFunc, Register);
94 PciAddress1 = PciAddress;
95 PciAddress = ((PciAddress & 0xFFFFFFFC) | (0x80000000));
97 Status = EfiIoWrite (EfiCpuIoWidthUint32, PCI_CONFIG_INDEX_PORT, 1, &PciAddress);
132 UINT32 PciAddress;
136 PciAddress = GetPciAddress (Segment, Bus, DevFunc, Register);
140 PciAddress1 = PciAddress;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/X64/
PlatformIoLib.c 47 PciAddress to be written to Config Port
88 UINT32 PciAddress;
92 PciAddress = GetPciAddress (Segment, Bus, DevFunc, Register);
96 PciAddress1 = PciAddress;
97 PciAddress = ((PciAddress & 0xFFFFFFFC) | (0x80000000));
99 Status = EfiIoWrite (EfiCpuIoWidthUint32, PCI_CONFIG_INDEX_PORT, 1, &PciAddress);
134 UINT32 PciAddress;
138 PciAddress = GetPciAddress (Segment, Bus, DevFunc, Register);
142 PciAddress1 = PciAddress;
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformSmm/
S3Save.c 91 SMM_PCI_IO_ADDRESS PciAddress;
267 PciAddress.Bus = 0;
268 PciAddress.Device = 0;
269 PciAddress.Function = 0;
270 PciAddress.ExtendedRegister = 0;
276 PciAddress.Register = ExtReg[Index];
279 PciAddress.Bus,
280 PciAddress.Device,
281 PciAddress.Function,
282 PciAddress.Register
    [all...]
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/Ppi/
SmbusPolicy.h 39 UINT32 PciAddress;
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/Dxe/AcpiPlatform/
AcpiPciUpdate.c 231 @param PciAddress Pci address from VPD
237 IN UINT32 PciAddress
242 ReturnAddress = ((PciAddress & 0x0000FF00) << 8) | (PciAddress & 0x000000FF);
244 if ((PciAddress & 0x000000FF) == 0x000000FF)
485 @param PciAddress Acpi pci address
497 IN UINT32 PciAddress,
528 if (CurrentPciAddress != PciAddress) {
585 @param PciAddress Acpi pci address
595 IN UINT32 PciAddress,
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/EfiRegTableLib/
EfiRegTableLib.c 67 (UINT64) Entry->PciAddress,
76 (UINT64) Entry->PciAddress,
110 (UINT64) Entry->PciAddress,
123 (UINT64) Entry->PciAddress,
132 (UINT64) Entry->PciAddress,
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/PiDxeS3BootScriptLib/
BootScriptExecute.c 666 UINTN PciAddress;
670 PciAddress = PCI_ADDRESS_ENCODE (Address);
672 Status = BuildLoopData (Width, PciAddress, &AddressStride, &BufferStride);
679 for (; Count > 0; Count--, PciAddress += AddressStride, Out.Buf += BufferStride) {
682 DEBUG ((EFI_D_INFO, "S3BootScriptWidthUint8 - 0x%08x\n", PciAddress));
683 *Out.Uint8 = PciRead8 (PciAddress);
686 DEBUG ((EFI_D_INFO, "S3BootScriptWidthFifoUint8 - 0x%08x\n", PciAddress));
687 *Out.Uint8 = PciRead8 (PciAddress);
690 DEBUG ((EFI_D_INFO, "S3BootScriptWidthFillUint8 - 0x%08x\n", PciAddress));
691 *Out.Uint8 = PciRead8 (PciAddress);
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/PciRootBridgeNoEnumerationDxe/Ia32/
PcatIo.c 101 EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_PCI_ADDRESS PciAddress;
127 CopyMem (&PciAddress, &UserAddress, sizeof(UINT64));
129 if (PciAddress.ExtendedRegister > 0xFF) {
140 if (PciAddress.ExtendedRegister != 0) {
141 Pci.Bits.Reg = PciAddress.ExtendedRegister & 0xFF;
143 Pci.Bits.Reg = PciAddress.Register;
151 Pci.Bits.Func = PciAddress.Function;
152 Pci.Bits.Dev = PciAddress.Device;
153 Pci.Bits.Bus = PciAddress.Bus;
172 This->Io.Write (This, EfiPciWidthUint32, PrivateData->PciAddress, 1, &PciAligned);
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/PciRootBridgeNoEnumerationDxe/X64/
PcatIo.c 101 EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_PCI_ADDRESS PciAddress;
127 CopyMem (&PciAddress, &UserAddress, sizeof(UINT64));
129 if (PciAddress.ExtendedRegister > 0xFF) {
140 if (PciAddress.ExtendedRegister != 0) {
141 Pci.Bits.Reg = PciAddress.ExtendedRegister & 0xFF;
143 Pci.Bits.Reg = PciAddress.Register;
151 Pci.Bits.Func = PciAddress.Function;
152 Pci.Bits.Dev = PciAddress.Device;
153 Pci.Bits.Bus = PciAddress.Bus;
172 This->Io.Write (This, EfiPciWidthUint32, PrivateData->PciAddress, 1, &PciAligned);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Include/
EfiRegTableLib.h 77 UINT32 PciAddress;
91 UINT32 PciAddress;
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/Drivers/PciHostBridgeDxe/
PciHostBridgeResourceAllocation.c 565 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_PCI_ADDRESS PciAddress,
590 EFI_PCI_ADDRESS (PciAddress.Bus, PciAddress.Device, PciAddress.Function, CapabilityPtr),
601 EFI_PCI_ADDRESS (PciAddress.Bus, PciAddress.Device, PciAddress.Function, CapabilityPtr),
614 EFI_PCI_ADDRESS (PciAddress.Bus, PciAddress.Device, PciAddress.Function, CapabilityPtr + 0x8),
    [all...]
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/DxeSmm/AcpiSmm/
AcpiSmmPlatform.c 825 EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_PCI_ADDRESS PciAddress;
845 PciAddress.Bus = mPciCfgRegTable[Index++];
846 PciAddress.Device = mPciCfgRegTable[Index++];
847 PciAddress.Function = mPciCfgRegTable[Index++];
848 PciAddress.Register = 0;
849 PciAddress.ExtendedRegister = 0;
851 Data16 = PciRead16 (PCI_LIB_ADDRESS(PciAddress.Bus, PciAddress.Device, PciAddress.Function, PciAddress.Register));
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciHotPlugSupport.c 332 UINT64 PciAddress;
340 PciAddress = EFI_PCI_ADDRESS (PciIoDevice->BusNumber, PciIoDevice->DeviceNumber, PciIoDevice->FunctionNumber, 0);
344 PciAddress,
PciDeviceSupport.h 263 @param PciAddress Buffer holding searched result.
265 @retval EFI_SUCCESS PCI address was stored in PciAddress.
273 OUT UINT64 *PciAddress
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Include/Library/
EfiRegTableLib.h 86 UINT32 PciAddress;
106 UINT32 PciAddress;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Protocol/PciPlatform/
PciPlatform.h 99 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_PCI_ADDRESS PciAddress,
122 PciAddress - The address of the PCI device on the PCI bus.
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
PciPlatform.h 239 @param[in] PciAddress The address of the PCI device on the PCI bus.
252 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_PCI_ADDRESS PciAddress,
DeviceIo.h 93 @param PciAddress The PCI configuration space address of the device whose Device Path
95 @param PciDevicePath A pointer to the pointer for the EFI Device Path for PciAddress.
100 @retval EFI_UNSUPPORTED The PciAddress does not map to a valid EFI Device Path.
107 IN UINT64 PciAddress,
PciHostBridgeResourceAllocation.h 355 @param[in] PciAddress The address of the PCI device on the PCI bus.
372 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_PCI_ADDRESS PciAddress,
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PciPlatform/
PciPlatform.h 74 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_PCI_ADDRESS PciAddress,
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Protocol/PciHostBridgeResourceAllocation/
PciHostBridgeResourceAllocation.h 328 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_PCI_ADDRESS PciAddress,
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Pci/Dxe/PciPlatform/
PciPlatform.h 67 IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_PCI_ADDRESS PciAddress,
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/BaseSerialPortLib16550/
BaseSerialPortLib16550.c 118 PCI Configuration register specified by PciAddress is already programmed with a
120 register specified by PciAddress with the value specified by Value and return the
124 @param PciAddress PCI Library address of the PCI Configuration register to update.
131 UINTN PciAddress,
138 CurrentValue = PciRead16 (PciAddress) & Mask;
142 return PciWrite16 (PciAddress, Value & Mask);
147 PCI Configuration register specified by PciAddress is already programmed with a
149 register specified by PciAddress with the value specified by Value and return the
153 @param PciAddress PCI Library address of the PCI Configuration register to update.
162 UINTN PciAddress,
    [all...]

Completed in 322 milliseconds

1 2