xref: /illumos-gate/usr/src/boot/efi/include/Protocol/PciEnumerationComplete.h (revision f334afcfaebea1b7dc3430015651d8d748fa8a3e)
1*f334afcfSToomas Soome /** @file
2*f334afcfSToomas Soome   PCI Enumeration Complete Protocol as defined in the PI 1.1 specification.
3*f334afcfSToomas Soome   This protocol indicates that pci enumeration complete
4*f334afcfSToomas Soome 
5*f334afcfSToomas Soome   Copyright (c) 2009, Intel Corporation. All rights reserved.<BR>
6*f334afcfSToomas Soome   SPDX-License-Identifier: BSD-2-Clause-Patent
7*f334afcfSToomas Soome 
8*f334afcfSToomas Soome   @par Revision Reference:
9*f334afcfSToomas Soome   This Protocol is defined in UEFI Platform Initialization Specification 1.2
10*f334afcfSToomas Soome   Volume 5: Standards
11*f334afcfSToomas Soome 
12*f334afcfSToomas Soome **/
13*f334afcfSToomas Soome 
14*f334afcfSToomas Soome #ifndef _PCI_ENUMERATION_COMPLETE_H_
15*f334afcfSToomas Soome #define _PCI_ENUMERATION_COMPLETE_H_
16*f334afcfSToomas Soome 
17*f334afcfSToomas Soome #define EFI_PCI_ENUMERATION_COMPLETE_GUID \
18*f334afcfSToomas Soome   {  \
19*f334afcfSToomas Soome    0x30cfe3e7, 0x3de1, 0x4586, { 0xbe, 0x20, 0xde, 0xab, 0xa1, 0xb3, 0xb7, 0x93  } \
20*f334afcfSToomas Soome   }
21*f334afcfSToomas Soome 
22*f334afcfSToomas Soome extern EFI_GUID  gEfiPciEnumerationCompleteProtocolGuid;
23*f334afcfSToomas Soome 
24*f334afcfSToomas Soome #endif
25