PciPlatformHooks.h 596 B

123456789101112131415161718192021222324
  1. /** @file
  2. Copyright (c) 2018, Intel Corporation. All rights reserved.<BR>
  3. SPDX-License-Identifier: BSD-2-Clause-Patent
  4. **/
  5. #ifndef PCI_PLATFORM_HOOKS_H_
  6. #define PCI_PLATFORM_HOOKS_H_
  7. VOID
  8. ChipsetCallback (
  9. IN EFI_HANDLE RootBridgeHandle,
  10. IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_PCI_ADDRESS PciAddress,
  11. IN EFI_PCI_ENUMERATION_PHASE Phase,
  12. EFI_PCI_CALLBACK_CONTEXT *Context
  13. );
  14. EFI_STATUS
  15. PciTreeTraverse (
  16. IN UINT8 StartBus
  17. );
  18. #endif