]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkModulePkg/Include/Guid/PciOptionRomTable.h
Update For Review
[mirror_edk2.git] / IntelFrameworkModulePkg / Include / Guid / PciOptionRomTable.h
CommitLineData
8ca67c46 1/** @file\r
3db51098 2 GUID and data structure used to describe the list of PCI Option ROMs present in a system.\r
3 \r
a9102619 4Copyright (c) 2006, Intel Corporation \r
5All rights reserved. This program and the accompanying materials \r
6are licensed and made available under the terms and conditions of the BSD License \r
7which accompanies this distribution. The full text of the license may be found at \r
8http://opensource.org/licenses/bsd-license.php \r
9 \r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
12\r
3db51098 13**/\r
a9102619 14\r
15#ifndef __PCI_OPTION_ROM_TABLE_GUID_H_\r
16#define __PCI_OPTION_ROM_TABLE_GUID_H_\r
17\r
18#define EFI_PCI_OPTION_ROM_TABLE_GUID \\r
19 { 0x7462660f, 0x1cbd, 0x48da, {0xad, 0x11, 0x91, 0x71, 0x79, 0x13, 0x83, 0x1c } }\r
20\r
21extern EFI_GUID gEfiPciOptionRomTableGuid;\r
22\r
23typedef struct {\r
24 EFI_PHYSICAL_ADDRESS RomAddress; \r
25 EFI_MEMORY_TYPE MemoryType;\r
26 UINT32 RomLength; \r
27 UINT32 Seg; \r
28 UINT8 Bus; \r
29 UINT8 Dev; \r
30 UINT8 Func; \r
31 BOOLEAN ExecutedLegacyBiosImage; \r
32 BOOLEAN DontLoadEfiRom;\r
33} EFI_PCI_OPTION_ROM_DESCRIPTOR;\r
34\r
35typedef struct {\r
36 UINT64 PciOptionRomCount;\r
37 EFI_PCI_OPTION_ROM_DESCRIPTOR *PciOptionRomDescriptors;\r
38} EFI_PCI_OPTION_ROM_TABLE;\r
39\r
ed7752ec 40#endif // __PCI_OPTION_ROM_TABLE_GUID_H_\r
41\r