]> git.proxmox.com Git - mirror_edk2.git/blobdiff - IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciLib.h
1. Impl PI 1.2 PCI part. Major changes include:
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Pci / PciBusDxe / PciLib.h
diff --git a/IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciLib.h b/IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciLib.h
deleted file mode 100644 (file)
index 43e3e48..0000000
+++ /dev/null
@@ -1,144 +0,0 @@
-/** @file\r
-  Internal library declaration for PCI Bus module.\r
-\r
-Copyright (c) 2006 - 2009, Intel Corporation\r
-All rights reserved. This program and the accompanying materials\r
-are licensed and made available under the terms and conditions of the BSD License\r
-which accompanies this distribution.  The full text of the license may be found at\r
-http://opensource.org/licenses/bsd-license.php\r
-\r
-THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
-\r
-**/\r
-\r
-#ifndef _EFI_PCI_LIB_H_\r
-#define _EFI_PCI_LIB_H_\r
-\r
-\r
-typedef struct {\r
-  EFI_HANDLE            Handle;\r
-} EFI_DEVICE_HANDLE_EXTENDED_DATA_PAYLOAD;\r
-\r
-typedef struct {\r
-  UINT32                             Bar;\r
-  UINT16                             DevicePathSize;\r
-  UINT16                             ReqResSize;\r
-  UINT16                             AllocResSize;\r
-  UINT8                              *DevicePath;\r
-  UINT8                              *ReqRes;\r
-  UINT8                              *AllocRes;\r
-} EFI_RESOURCE_ALLOC_FAILURE_ERROR_DATA_PAYLOAD;\r
-\r
-\r
-/**\r
-  Retrieve the PCI Card device BAR information via PciIo interface.\r
-\r
-  @param PciIoDevice        PCI Card device instance.\r
-\r
-**/\r
-VOID\r
-GetBackPcCardBar (\r
-  IN  PCI_IO_DEVICE                  *PciIoDevice\r
-  );\r
-\r
-/**\r
-  Remove rejected pci device from specific root bridge\r
-  handle.\r
-\r
-  @param RootBridgeHandle  Specific parent root bridge handle.\r
-  @param Bridge            Bridge device instance.\r
-\r
-**/\r
-VOID\r
-RemoveRejectedPciDevices (\r
-  IN EFI_HANDLE        RootBridgeHandle,\r
-  IN PCI_IO_DEVICE     *Bridge\r
-  );\r
-\r
-/**\r
-  Submits the I/O and memory resource requirements for the specified PCI Host Bridge.\r
-\r
-  @param PciResAlloc  Point to protocol instance of EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PROTOCOL.\r
-\r
-  @retval EFI_SUCCESS           Successfully finished resource allocation.\r
-  @retval EFI_NOT_FOUND         Cannot get root bridge instance.\r
-  @retval EFI_OUT_OF_RESOURCES  Platform failed to program the resources if no hot plug supported.\r
-  @retval other                 Some error occurred when allocating resources for the PCI Host Bridge.\r
-\r
-  @note   Feature flag PcdPciBusHotplugDeviceSupport determine whether need support hotplug.\r
-\r
-**/\r
-EFI_STATUS\r
-PciHostBridgeResourceAllocator (\r
-  IN EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PROTOCOL *PciResAlloc\r
-  );\r
-\r
-/**\r
-  Scan pci bus and assign bus number to the given PCI bus system.\r
-\r
-  @param  Bridge           Bridge device instance.\r
-  @param  StartBusNumber   start point.\r
-  @param  SubBusNumber     Point to sub bus number.\r
-  @param  PaddedBusRange   Customized bus number.\r
-\r
-  @retval EFI_SUCCESS      Successfully scanned and assigned bus number.\r
-  @retval other            Some error occurred when scanning pci bus.\r
-\r
-  @note   Feature flag PcdPciBusHotplugDeviceSupport determine whether need support hotplug.\r
-\r
-**/\r
-EFI_STATUS\r
-PciScanBus (\r
-  IN PCI_IO_DEVICE                      *Bridge,\r
-  IN UINT8                              StartBusNumber,\r
-  OUT UINT8                             *SubBusNumber,\r
-  OUT UINT8                             *PaddedBusRange\r
-  );\r
-\r
-/**\r
-  Process Option Rom on the specified root bridge.\r
-\r
-  @param Bridge  Pci root bridge device instance.\r
-\r
-  @retval EFI_SUCCESS   Success process.\r
-  @retval other         Some error occurred when processing Option Rom on the root bridge.\r
-\r
-**/\r
-EFI_STATUS\r
-PciRootBridgeP2CProcess (\r
-  IN PCI_IO_DEVICE *Bridge\r
-  );\r
-\r
-/**\r
-  Process Option Rom on the specified host bridge.\r
-\r
-  @param PciResAlloc    Pointer to instance of EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PROTOCOL.\r
-\r
-  @retval EFI_SUCCESS   Success process.\r
-  @retval EFI_NOT_FOUND Can not find the root bridge instance.\r
-  @retval other         Some error occurred when processing Option Rom on the host bridge.\r
-\r
-**/\r
-EFI_STATUS\r
-PciHostBridgeP2CProcess (\r
-  IN EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PROTOCOL *PciResAlloc\r
-  );\r
-\r
-/**\r
-  This function is used to enumerate the entire host bridge\r
-  in a given platform.\r
-\r
-  @param PciResAlloc   A pointer to the PCI Host Resource Allocation protocol.\r
-\r
-  @retval EFI_SUCCESS            Successfully enumerated the host bridge.\r
-  @retval EFI_OUT_OF_RESOURCES   No enough memory available.\r
-  @retval other                  Some error occurred when enumerating the host bridge.\r
-\r
-**/\r
-EFI_STATUS\r
-PciHostBridgeEnumerator (\r
-  IN EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PROTOCOL  *PciResAlloc\r
-  );\r
-\r
-#endif\r